Step 1: Create a new project in Xcode using the "Single View Application" option.

Step 2: Now add some code in your viewcontroller header file:

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController
{
    IBOutlet UIWebView *webDisplay;
}
@property(nonatomic,retain) UIWebView *webDisplay;

@end


Step 3: Double click on MainStoryboard.storyboard and open it to Interface Builder. 
        Drag "Web View" from the library and place into view.
        Connect the UIWebView code to the Web View GUI.

Step 4: Open ViewController.m
        In viewDidLoad we create a URL object, URL request object and load the request in the UIWebView.

- (void)viewDidLoad {
    NSString *urlAddress = @"http://www.itu.edu";
    NSURL *url = [NSURL URLWithString:urlAddress];
    NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
    [webDisplay loadRequest:requestObj];
    [super viewDidLoad];
}

Step 5: Now compile your application and run it in the Simulator.
